'Using this with the above codes allows you to click on a picturebox, and it will send a click on your computer at a given ratio *slightly off* but would be good for Rats, or Remote assistance

Public Shared Sub PictureToScreenClick(ByVal PictureBox As PictureBox)
        SetCursorPos(PictureBox.PointToClient(Cursor.Position).X * MathX(PictureBox), _
        PictureBox.PointToClient(Cursor.Position).Y * MathY(PictureBox))
        SendClick(ButtonType.LeftClick)
    End Sub